home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / noinfo.arc / NOINFO.BAT next >
Encoding:
DOS Batch File  |  1986-10-04  |  2.3 KB  |  66 lines

  1. ECHO OFF
  2. CLS
  3. ECHO .               This batch file, along with it's companion
  4. ECHO .               data file will patch the Procomm 2.4  "PRM"
  5. ECHO .               file so as to make Procomm "Think" it has
  6. ECHO .               been run 255 times. Thus,you will no longer
  7. ECHO .               see the Info screen every time you boot it.
  8. ECHO .               You must have the Procomm files, this file,
  9. ECHO .               and it's data file, and a copy of DOS's
  10. ECHO .               Debugging utility "DEBUG.COM" in the direct-
  11. ECHO .               ory you are logged to. If this is the case
  12. ECHO .               then press any key to continue. If ALL of 
  13. ECHO .               these files are NOT in the same directory
  14. ECHO .               hit CONTROL-C to abort this batch file, and
  15. ECHO .               perform the copy commands required to get
  16. ECHO .               them together.
  17. ECHO .
  18. PAUSE
  19. CLS
  20. ECHO .
  21. ECHO .
  22. ECHO .
  23. ECHO .
  24. ECHO .
  25. ECHO .                         This procedure written
  26. ECHO .
  27. ECHO .                                   By
  28. ECHO .
  29. ECHO .                             Bob Buckmaster
  30. ECHO .
  31. ECHO .
  32. ECHO .
  33. ECHO .                                 Sys-Op
  34. ECHO .
  35. ECHO .                                   of
  36. ECHO .        
  37. ECHO .                         "The U.S.S. Enterprise II"
  38. ECHO .                           Bulletin Board System
  39. ECHO .                               Montgomery,Al
  40. ECHO .                               (205)286-9581
  41. ECHO .
  42. ECHO .
  43. ECHO .                           Checking to see if all of
  44. ECHO .                           the needed files are here...
  45. IF NOT EXIST PROCOMM.PRM GOTO NO_PRM
  46. IF NOT EXIST DEBUG.COM GOTO NO_DEBUG
  47. IF NOT EXIST NOINFO.DAT GOTO NO_INFO
  48. ECHO .
  49. ECHO .                            Patching PROCOMM.PRM...
  50. DEBUG PROCOMM.PRM<NOINFO.DAT >nul
  51. ECHO .                                    Done...
  52. GOTO END
  53. :NO_PRM
  54. ECHO .                          Can NOT locate PROCOMM.PRM!
  55. ECHO .                                    Aborting!
  56. GOTO END
  57. :NO_DEBUG
  58. ECHO .                          Can NOT locate DEBUG.COM!
  59. ECHO .                                   Aborting!
  60. GOTO END
  61. :NO_INFO
  62. ECHO .                          Can NOT locate NOINFO.DAT!
  63. ECHO .                                   Aborting!
  64. GOTO END
  65. :END
  66.